home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / wb / systemprefs33.lha / SystemPrefs / Install next >
Text File  |  1995-03-24  |  1KB  |  71 lines

  1. ; ************************************************
  2. ; *
  3. ; * SystemPrefs - HD Install Script
  4. ; *
  5. ; * $VER: Install-System 1.10
  6. ; *
  7. ; * Script written by Richard K÷rber
  8. ; *
  9. ; ************************************************
  10.  
  11.  
  12. (set ToolSource         "System")
  13. (set CLIToolSource      "C/SysPrefs")
  14. (set LibSource1         "Libs/provision.library")
  15. (set LibSource2         "Libs/reqtools.library")
  16.  
  17. (set CopyLib1Prompt     "Copy provision.library?")
  18. (set CopyLib2Prompt     "Copy reqtools.library?")
  19. (set ToolDirPrompt      "Copy System to...?")
  20. (set CLIDirPrompt       "Copy SysPrefs to...?")
  21. (set ToolCopyPrompt     "Copying System...")
  22. (set CLICopyPrompt      "Copying SysPrefs...")
  23.  
  24.  
  25. (set ToolDir (askdir
  26.     (prompt ToolDirPrompt)
  27.     (help   @askdir-help)
  28.     (default "SYS:Prefs/")
  29. ))
  30.  
  31. (set CLIToolDir (askdir
  32.     (prompt CLIDirPrompt)
  33.     (help   @askdir-help)
  34.     (default "SYS:C/")
  35. ))
  36.  
  37. (copyfiles
  38.     (prompt ToolCopyPrompt)
  39.     (help   @copyfiles-help)
  40.     (source ToolSource)
  41.     (dest   ToolDir)
  42.     (infos)
  43. )
  44.  
  45. (copyfiles
  46.     (prompt CLICopyPrompt)
  47.     (help   @copyfiles-help)
  48.     (source CLIToolSource)
  49.     (dest   CLIToolDir)
  50. )
  51.  
  52. (copylib
  53.     (prompt CopyLib1Prompt)
  54.     (help   @copylib-help)
  55.     (source LibSource1)
  56.     (dest   "LIBS:")
  57.     (confirm)
  58. )
  59.  
  60. (copylib
  61.     (prompt CopyLib2Prompt)
  62.     (help   @copylib-help)
  63.     (source LibSource2)
  64.     (dest   "LIBS:")
  65.     (confirm)
  66. )
  67.  
  68. (message "Please add the following line\ninto s:startup-sequence:\n\n"
  69. "  SysPrefs >NIL: \n\n"
  70. "Just before 'IPrefs' is the best place.")
  71.